home *** CD-ROM | disk | FTP | other *** search
/ Aminet 8 / Aminet 8 (1995)(GTI - Schatztruhe)[!][Oct 1995].iso / Aminet / biz / dbase / EV30F.lha / EasyVideo / REXX / EV_Befehl10vor.rexx next >
OS/2 REXX Batch file  |  1994-09-30  |  250b  |  23 lines

  1. /* RexxBefehle für EasyVideo
  2.    (c) Jörg Trahm
  3.  
  4.     Springe 10 Datensätze weiter
  5.  
  6. */
  7.  
  8.  
  9. call addlib('rexxsupport.library',0,-30)
  10.  
  11. parse arg PortName
  12. address(PortName)
  13. options results
  14.  
  15. Satz = 0
  16.  
  17. EV_Inhalt "Akt_Satz"
  18. Satz = Result + 10
  19. EV_Goto Satz
  20.  
  21. exit
  22.  
  23.